home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / devtools / automake-1.0.tar.gz / automake-1.0.tar / automake-1.0 / configure.in < prev    next >
Text File  |  1996-05-28  |  789b  |  39 lines

  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(automake.in)
  3. dnl we use this for gettext
  4. dnl AC_CONFIG_HEADER(config.h)
  5.  
  6. PACKAGE=automake
  7. AC_SUBST(PACKAGE)
  8. AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
  9. VERSION=1.0
  10. AC_SUBST(VERSION)
  11. AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
  12. ALL_LINGUAS=
  13.  
  14. AC_PROG_MAKE_SET
  15. AC_ARG_PROGRAM
  16. fp_PROG_INSTALL
  17.  
  18. AC_PATH_PROG(PERL, perl)
  19. if test -z "$PERL"; then
  20.    echo "fatal error: perl not found" 1>&2
  21.    exit 1
  22. fi
  23.  
  24. dnl
  25. dnl NLS configuration.
  26. dnl
  27.  
  28. dnl ud_GNU_GETTEXT
  29. dnl AC_LINK_FILES($nls_cv_header_libgt, $nls_cv_header_intl)
  30.  
  31. dnl
  32. dnl End of NLS configuration.
  33. dnl
  34.  
  35.  
  36. AC_OUTPUT([Makefile automake tests/Makefile], [chmod +x automake])
  37. dnl intl/Makefile po/Makefile.in],
  38. dnl [sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile])
  39.